home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / TASM V5 / WAP.PAK / MAKEFILE next >
Text File  |  1996-02-21  |  654b  |  32 lines

  1. #   Make file for Turbo Assembler WAP example.
  2. #   Copyright (c) 1996 by Borland International, Inc.
  3.  
  4. #       make -B                 Will build wap.exe
  5. #       make -B -DDEBUG         Will build the debug version of wap.exe
  6.  
  7. NAME = WAP
  8. OBJS = $(NAME).obj
  9. DEF  = $(NAME).def
  10.  
  11. !if $d(DEBUG)
  12. TASMDEBUG=/zi
  13. LINKDEBUG=/v
  14. !else
  15. TASMDEBUG=
  16. LINKDEBUG=
  17. !endif
  18.  
  19. !if $d(MAKEDIR)
  20. IMPORT=$(MAKEDIR)\..\lib\import
  21. THEINCLUDE=/i$(MAKEDIR)\..\include
  22. !else
  23. IMPORT=import
  24. THEINCLUDE=
  25. !endif
  26.  
  27. $(NAME).EXE: $(OBJS) $(DEF)
  28.   tlink /Twe $(LINKDEBUG) $(OBJS),$(NAME),, $(IMPORT), $(DEF)
  29.  
  30. .asm.obj:
  31.    tasm $(TASMDEBUG) /ml $(THEINCLUDE) $&.asm
  32.